9073a859021468b3c2f4a6493fdeecfa9e580005,python/ide/src/com/jetbrains/python/newProject/actions/ProjectSpecificSettingsStep.java,ProjectSpecificSettingsStep,addInterpreterButton,#JPanel#LabeledComponent#,248
Before Change
private void addInterpreterButton(final JPanel locationPanel, final LabeledComponent<TextFieldWithBrowseButton> location) {
final JButton interpreterButton = new FixedSizeButton(location);
interpreterButton.putClientProperty("JButton.buttonType", null);
interpreterButton.setIcon(PythonIcons.Python.Python);
interpreterButton.putClientProperty("JButton.buttonType", "square");
interpreterButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
After Change
private void addInterpreterButton(final JPanel locationPanel, final LabeledComponent<TextFieldWithBrowseButton> location) {
final JButton interpreterButton = new FixedSizeButton(location);
if (SystemInfo.isMac && !UIUtil.isUnderDarcula())
interpreterButton.putClientProperty("JButton.buttonType", null);
interpreterButton.setIcon(PythonIcons.Python.Python);
interpreterButton.addActionListener(new ActionListener() {
@Override